From: Georges Basile Stavracas Neto Date: Mon, 21 Aug 2023 18:23:22 +0000 (-0300) Subject: ci: Limit parallel linking on Windows CI X-Git-Tag: archive/raspbian/4.12.3+ds-1+rpi1~1^2^2^2~22^2^2~10 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=8605a073ea9f35fb1dafddad0aaa7b2296e45683;p=gtk4.git ci: Limit parallel linking on Windows CI Linking on Windows can easily run out of memory, and limiting it to a single link operation (i.e. disabling parallelization) should be enough to avoid this problem. --- diff --git a/.gitlab-ci/test-msvc.bat b/.gitlab-ci/test-msvc.bat index c985c413fc..89255b25b9 100644 --- a/.gitlab-ci/test-msvc.bat +++ b/.gitlab-ci/test-msvc.bat @@ -6,7 +6,7 @@ call "C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Auxiliar :: FIXME: make warnings fatal pip3 install --upgrade --user meson~=0.64 || goto :error -meson -Ddebug=false -Dmedia-gstreamer=disabled _build || goto :error +meson setup -Dbackend_max_links=1 -Ddebug=false -Dmedia-gstreamer=disabled _build || goto :error ninja -C _build || goto :error goto :EOF